home *** CD-ROM | disk | FTP | other *** search
/ AppleScript - The Beta Release / AppleScript - The Beta Release.iso / Documentation / IM-Interapplication Comm / Apple® Event Manager Addendum next >
Encoding:
Text File  |  1992-11-20  |  1.1 KB  |  14 lines  |  [ttro/ttxt]

  1. Apple Event Manager 1.0.1b4 is a new release of the Apple Event Manager that supports recording of Apple Events. The new features are covered in the beta version of the new Inside Macintosh. However some changes are made too late for the beta Inside Macintosh and it will be covered here.
  2.  
  3. AEResumeTheCurrentEvent has now been enhanced to better support tinkering of application with scripts. In version 1.0 of the Apple Event Manager, it is not possible to resume the same Apple Event from inside an Apple Event handler. Now you can do that to redispatch an Apple Event to some other handlers. Furthermore, if you use kAEUseStandardDispatch in AEResumeTheCurrentEvent, you can have finer control of the dispatching.
  4. There are now new constants in the header file that can be used in the refcon of AEResumeTheCurrentEvent using kAEUseStandardDispatch.
  5.  
  6. kAEDoNotIgnoreHandler = 0;
  7. kAEIgnoreAppPhacHandler = 1; 
  8. kAEIgnoreAppEventHandler = 2; 
  9. kAEIgnoreSysPhacHandler = 4; 
  10. kAEIgnoreSysEventHandler = 8;
  11. kAEIngoreBuiltInEventHandler = 16;
  12.  
  13. With combination of these constants, you may skip over certain kind of handlers during the dispatching.
  14.